home *** CD-ROM | disk | FTP | other *** search
- /*
- ** wt -- a 3d game engine
- **
- ** Copyright (C) 1994 by Chris Laurel
- ** email: claurel@mr.net
- ** snail mail: Chris Laurel, 5700 W Lake St #208, St. Louis Park, MN 55416
- **
- ** This program is free software; you can redistribute it and/or modify
- ** it under the terms of the GNU General Public License as published by
- ** the Free Software Foundation; either version 2 of the License, or
- ** (at your option) any later version.
- **
- ** This program is distributed in the hope that it will be useful,
- ** but WITHOUT ANY WARRANTY; without even the implied warranty of
- ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ** GNU General Public License for more details.
- **
- ** You should have received a copy of the GNU General Public License
- ** along with this program; if not, write to the Free Software
- ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
- #if defined(macintosh) || defined(__MWERKS__)
- #include "mac_wt.h"
- #endif /* mac? */
-
-
- /* directory and file configuration */
- #define TEXTURE_PATH "textures"
- #define DEFAULT_WORLD_FILE "test.world"
- #define DEFAULT_PALETTE_FILE "wt.pal"
-
- #ifndef MIN
- #define MIN(a, b) ((a) < (b) ? (a) : (b))
- #endif
- #ifndef MAX
- #define MAX(a, b) ((a) > (b) ? (a) : (b))
- #endif
-
- #ifndef GotFalseTrueBoolean
- #ifndef False
- typedef enum { False, True } Boolean;
- #else
- #ifndef Boolean
- #define Boolean int
- #endif /* ndef Boolean */
- #endif /* ndef False */
- #endif /* ndef GotFalseTrueBoolean */
-
- #if !defined(__GNUC__) && !defined(GOT_INLINE)
- #define inline
- #endif
-
- /* For compilers without NULL defined in stdlib.h */
- #ifndef NULL
- #include <stdio.h>
- #endif
-
- /* More compatibility stuff . . . */
- #ifndef PATH_MAX
- #ifdef _POSIX_PATH_MAX
- #define PATH_MAX _POSIX_PATH_MAX
- #else
- #define PATH_MAX 1024
- #endif
- #endif
-
- #ifndef EXIT_FAILURE
- #define EXIT_FAILURE 1
- #endif
- #ifndef EXIT_SUCCESS
- #define EXIT_SUCCES 0
- #endif
-
- /* Given a PC palette index, return a host one suitable for blatting
- ** into an offscreen pixmap. Most hosts will have a 1:1 mapping here.
- */
-
- #ifndef HostIndexFromPCIndex
- #define HostIndexFromPCIndex(x) (x)
- #endif
-
- /* HostDirFileStr -- define a "printf()" string which, given a
- ** directory and a filename, munges them together to produce a
- ** pathname suitable for passing to fopen().
- */
- #ifndef HostDirFileStr
- #define HostDirFileStr "%s/%s" /* i.e., "directory/filename" */
- #endif
-
- /* HostFixupPixelData -- allow a host to whizz through a buffer
- ** containing pixel data and possibly alter it in some evil fashion.
- ** Only the Mac does this at the mo...
- */
- #ifndef HostFixupPixelData
- #define HostFixupPixelData(buf, nBytes) /* nothing */
- #endif
-
-